SQLGetCount

 

Get the number of records retrieved by running SQLSelect.

 

int @SQLGetCount(int id);

 

Parameters

int id : Access number connected by SQLConnect

 

Return Value

The number of records retrieved is returned.

 

Example

@SQLSelect(id, "ValueTable", "BindListValue", "", "");

count = @SQLGetCount(id);

 

Description : Reads the total number of records in the table in the ValueTable.

 

Version Information

Suppoted version: 8.5.0 or higer

 

Related Helps

SQLConnect()

SQLCreateTable()

SQLDelete()

SQLDisconnect()

SQLExecute()

SQLFirst()

SQLInsert()

SQLLast()

SQLNext()

SQLPrepare()

SQLPrev()

SQLQueryCount()

SQLSelect()

SQLSetPos()

SQLUpdate()